home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d13 / pcx2char.arc / READ.ME < prev   
Text File  |  1990-09-14  |  3KB  |  65 lines

  1.  
  2.                Copyright 1990 by PowerSoft, Inc. and Kam Ware
  3.          Portions Copyright Genus Microprogramming, Inc. 1988-1990
  4.                             All Rights Reserved.
  5.  
  6.  
  7. This program may be freely distributed provided NO fee is charged, AND this 
  8. documentation accompanies the executable program.
  9.  
  10. I do not warranty this program in any way, and neither myself nor PowerSoft, 
  11. Inc. will be held liable for any losses incurred by its use. (Now the lawyers 
  12. are happy.)
  13.  
  14. ------------------------------------------------------------------------------
  15.  
  16. PCX2CHAR is a utility that converts a black and white .PCX formatted image 
  17. into a form suitable for output to devices that do not support graphics (e.g. 
  18. Line printers, daisy wheel printers, CRT's, etc.).
  19.  
  20. I developed this program to load a corporate logo for a client into a bar-code 
  21. label printer which did not understand PCX bitmaps. The only other useful 
  22. function I can see this program performing is converting scanned corporate 
  23. logos into a text file that can be printed on a line printer as a cover sheet, 
  24. or displayed as a logon screen on a users terminal.
  25.  
  26. Syntax:  PCX2CHAR image{.pcx} {xchars} {ychars}
  27.          image.pcx     Name of input .PCX file (from scanner, etc.)
  28.          xchars        Number of characters across desired (optional)
  29.          ychars        Number of characters down desired   (optional)
  30.  
  31. The output may be redirected with the DOS '>' redirection command
  32.  
  33. Xchars and ychars may be used to scale the image to a desired size. If neither 
  34. xchars or ychars are specified, the output file will have the same dimensions 
  35. (in characters) as the input image had (in bits). If just the xchars parameter 
  36. is specified, ychars will be set to retain the images original aspect ratio.
  37.  
  38. Given an original scanned image, called OURLOGO.PCX, with a size of 100 pixels
  39. across by 40 pixels down:
  40.  
  41. PCX2CHAR OURLOGO > OURLOGO.TXT
  42.  
  43. Will produce a file named OURLOGO.TXT with 40 lines of 100 characters each.
  44.  
  45. PCX2CHAR OURLOGO 132 > OURLOGO.TXT
  46.  
  47. Will produce a file named OURLOGO.TXT with 52 lines of 132 characters each.
  48.  
  49. PCX2CHAR OURLOGO 132 50 > OURLOGO.TXT
  50.  
  51. Will produce a file named OURLOGO.TXT with 50 lines of 132 characters each.
  52.  
  53. ------------------------------------------------------------------------------
  54.  
  55. PowerSoft, Inc. is a software development company specializing in DOS based 
  56. imaging products. Our soon to be released product, QuickPix (tm), allows 
  57. non-programmers to tie images to a variety of data bases, spreadsheets, and 
  58. word processors.
  59.  
  60. Although support is not offered for PCX2CHAR (what do you expect for free?), I 
  61. can be contacted on the PowerSoft support BBS at (404) 928-9294.
  62.  
  63. Kam Ware
  64. September 12, 1990
  65.